-
Re: Origins of Python in Type Design
And then there was RoboFog, a customised version of Fontograper 3.5 modified by Petr van Blokland, Just van Rossum and Erik van Blokland in 1995, that was the first font editor to include Python scri…8 -
Re: Font naming and version control - incl. different formats
The Python FontTools library gives access to the contents of most common font file formats. For OpenType and TrueType fonts it will be a matter of writing a Python program that can iterate through fo…7 -
Re: The vinyl records of font formats
I find Windows PostScript fonts indeed give a warmer appearance to text, but only when used on vintage equipment such as an Intel Pentium 120 MHz with 4 MB RAM running Windows 3. Those bigger transis…11 -
Re: OT Sub Prioritisation (Need Help)
set the first line of your feature to:sub i l' l' by l_l; The order of the substution rules does matter, and you need to define the longest substitutions first.2 -
Re: How to add name table entries with FontTools?
Never mind, I found it. This will do the trick:from fontTools.ttLib.tables._n_a_m_e import NameRecord myRecord = NameRecord() myRecord.nameID = 128 myRecord.platformID = 64 myRecord.platEncID = 32 my…4